GET
/
v1
/
incident_custom_field_selections
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/incident_custom_field_selections/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1",
    "type": "incident_custom_field_selections",
    "attributes": {
      "custom_field_id": 28,
      "incident_id": "65742d70-7b1b-4364-a5b2-2bdf2bcb6650",
      "value": "Ipsum voluptatem qui nam.",
      "selected_option_ids": []
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json
incident_custom_field_selection found
data
object
required

Was this page helpful?